home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Video Toaster 4.3
/
Video Toaster v4.3.iso
/
4.2
/
arexx
/
toasterpaint
/
import.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-04-16
|
593b
|
26 lines
/* Import.rexx -- Import Using Hiip */
/* © 1995 NewTek, Inc. by Bob Caron */
if pos('DigiPaint',show(ports))=0 then do
exit
end
options results
address command "c:assign hiip: toaster:programs/hiip_support"
Address "DigiPaint" /* Tell ARexx where commands go */
'Dnam'"Images/"
'Askf'"LD Universal"
file=result
address command "C:gnusto "||value("file")||" T:temp image saver iff"
if exists("t:temp") then do
'Lo24'
'Fnam'"T:temp" /* Enter File name */
'Okls' /* Hit the OK button */
end
address command "c:delete t:temp"
exit